body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ffb6c1, #c5818c);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Caja del login */
.login-box {
    background: #fff0f5;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
    text-align: center;
    width: 300px;
}

/* Título */
h2 {
    color: #d63384;
}

/* Inputs */
input, select {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ff69b4;
    border-radius: 8px;
}

/* Botón */
button {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #ff1493;
}